home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CMNCTRL.PAK / CTRLDEMO.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  53 lines

  1. // ctrldemo.h : main header file for the CTRLDEMO application
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. #ifndef __AFXWIN_H__
  15.     #error include 'stdafx.h' before including this file for PCH
  16. #endif
  17.  
  18. #include "resource.h"       // main symbols
  19.  
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CCtrldemoApp:
  23. // See ctrldemo.cpp for the implementation of this class
  24. //
  25. #define LISTICONCOUNT    4
  26. #define ICONLISTFIRST    0
  27. #define ICONLISTLAST    (ICONLISTFIRST + LISTICONCOUNT - 1)
  28. #define ICONCOUNT (LISTICONCOUNT)
  29.  
  30. #define CELEMS(rgFoo) (sizeof(rgFoo) / sizeof(rgFoo[0]))
  31.  
  32. class CCtrldemoApp : public CWinApp
  33. {
  34. public:
  35.     CCtrldemoApp();
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CCtrldemoApp)
  40.     public:
  41.     virtual BOOL InitInstance();
  42.     //}}AFX_VIRTUAL
  43.  
  44. // Implementation
  45.  
  46.     //{{AFX_MSG(CCtrldemoApp)
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.